-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 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
import setuptools
from sqlalchemy_resolver import get_version
VERSION = get_version()
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name="sqlalchemy-resolver",
version=VERSION,
license="BSL-1.1",
author="coding kitties",
description="A collection of sqlalchemy utility classes that helps in using sqlalchemy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/coding-kitties/sqlalchemy-resolver.git",
download_url="https://github.com/coding-kitties/sqlalchemy-resolver/archive/{}.tar.gz".format(get_version()),
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
keywords=['SQLALCHEMY', 'SQL', 'ORM', 'DATABASE'],
classifiers=[
"Intended Audience :: Developers",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
],
install_requires=required,
python_requires='>=3.6',
include_package_data=True,
)