-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1.18 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (30 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="farc",
version="0.2.0",
author="Dean Hall",
author_email="dwhall256@gmail.com",
description="Framework for Asyncio/Actor/AHSM Run-to-completion Concurrency",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dwhall/farc",
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
# Python 3.4 or later because asyncio is required
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
# Alpha status because there is API breakage between releases
# without changing the major version number
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Intended Audience :: Developers",
'Framework :: AsyncIO',
],
)