-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (33 loc) · 791 Bytes
/
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
from setuptools import find_packages, setup
install_requires = [
'alembic == 0.7.4',
'bcrypt == 1.1.0',
'flask == 0.10.1',
'flake8 == 2.5.1',
'import-order == 0.0.7',
'sqlalchemy == 1.0.11',
'libsass >= 0.7.0, < 0.8.0',
'wtforms >= 2.0.2, < 2.1.0',
]
tests_require = [
'pytest >= 2.9.0',
'pytest-sugar',
]
def readme():
with open('README.md') as f:
try:
return f.read()
except (IOError, OSError):
return None
setup(
name="timetable",
version=0.1,
packages=find_packages(),
url='https://github.com/jihyun00/timetable',
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'tests': tests_require,
},
long_description=readme(),
)