-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.23 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
requires = [
'SQLAlchemy>=1.4',
'sqlalchemy_utils',
]
tests_require = [
'psycopg2',
'testing.postgresql',
'tox',
]
setup_requires = [
'setuptools-git-versioning',
]
setup(
name = 'ltree_models',
version_config = True,
packages = find_packages(),
setup_requires = setup_requires,
install_requires = requires,
extras_require = {
'testing': tests_require,
},
description = 'sqlalchemy models for ltree.',
long_description=README,
long_description_content_type='text/markdown',
author = 'Colin Higgs',
author_email = '[email protected]',
license = 'GNU Affero General Public License v3 or later (AGPLv3+)',
url = '',
keywords = ['json', 'api', 'json-api', 'jsonapi', 'jsonschema', 'openapi', 'pyramid', 'sqlalchemy'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3',
],
)