-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
38 lines (36 loc) · 1.1 KB
/
setup.py
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
36
37
38
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='python-af',
version='1.0.0',
description='A python package that automates your workflow',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/MLH-Fellowship/autoflow',
author='Team Autoflow',
platforms=['posix'],
license ='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'PyGithub',
'gitpython'
],
entry_points={
'console_scripts': [
'af = autoflow.main:main'
]
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords='autoflow, python-af, workflow automation, productivity',
python_requires='>=3.6',
)