-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.11 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
from setuptools import setup
try:
with open('README.md') as file:
long_description = file.read()
except:
long_description = "Polymorphic relations for SQLAlchemy"
setup(name='polymorphic_sqlalchemy',
version='0.2.7',
description='Polymorphic relations for SQLAlchemy',
url='https://github.com/wearefair/polymorphic-sqlalchemy',
author='Seperman',
author_email='sepd@fair.com',
packages=['polymorphic_sqlalchemy'],
zip_safe=False,
test_suite="tests",
tests_require=['Flask==1.0',
'Flask-SQLAlchemy==2.4.0',
'pytest==4.5.0', ],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'SQLAlchemy',
'inflection'
],
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
],
)