-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (41 loc) · 1.51 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
47
# -*- coding: utf-8 -*-
# Copyright (c) 2017 the Residue team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.
"""SQLAlchemy CRUD Utilities"""
import os
from setuptools import setup, find_packages
# Package versioning solution originally found here:
# http://stackoverflow.com/q/458550
exec(open(os.path.join('residue', '_version.py')).read())
reqs = open('requirements.txt', 'r').read().strip().splitlines()
setup(
name='residue',
version=__version__,
url='http://residue.readthedocs.org',
download_url='http://pypi.python.org/pypi/residue',
license='BSD',
author='Rob Ruana',
author_email='[email protected]',
description=__doc__,
long_description=open('README.rst', 'r').read(),
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Database',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms='any',
packages=find_packages(exclude=['tests*']),
install_requires=reqs
)