-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.26 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
"""
setup.py for coding_scales.
Useful links:
https://pythonhosted.org/setuptools/setuptools.html#command-reference
https://pythonhosted.org/setuptools/setuptools.html#basic-use
https://pythonhosted.org/setuptools/setuptools.html#new-and-changed-setup-keywords
https://pypi.python.org/pypi?%3Aaction=list_classifiers
"""
import sys
from setuptools import setup
tests_require = ["nose", "flask_testing"]
if sys.version_info < (3,0):
tests_require.append("mock")
setup(
name = "coding_scales",
version = "0.1.0",
author = "iLoveTux",
author_email = "[email protected]",
description = ("A typing tutor with a twist of coding."),
install_requires=[
"flask",
"flask_restful",
"flask_login",
"flask_sqlalchemy",
"matplotlib",
"numpy",
"scipy",
],
test_suite="nose.collector",
tests_require=tests_require,
license = "Affero",
keywords = "programming coding practice",
url = "https://github.com/ilovetux/coding_scales",
packages=['coding_scales'],
long_description="Long description",
classifiers=[
"Development Status :: 1 - Planning",
"Topic :: Utilities",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
)