-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (52 loc) · 1.75 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
with open("src/gather2gether/VERSION", "r") as version_file:
__version__ = version_file.read().strip()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="gather2gether",
version=__version__,
packages=find_packages("src"),
package_dir={"": "src"},
package_data={'gather2gether': ['VERSION']},
author="witrdotnet",
author_email="witr.net@gmail.com",
description="Helps remote people to accomplish tasks together",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/witrdotnet/gather2gether",
entry_points = {
'console_scripts': [
'gather2gether=gather2gether.run:main',
'g2g=gather2gether.g2g:cli',
],
'flask.commands': [
'db=gather2gether.cli:db',
'tasks=gather2gether.cli_task:tasks',
'users=gather2gether.cli_user:users',
'projects=gather2gether.cli_project:projects',
],
},
install_requires=[
'Flask',
'Jinja2',
'peewee',
'pymysql',
'configparser',
'tabulate',
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=2.7',
)