32 lines
759 B
Python
32 lines
759 B
Python
|
import os
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
here = os.path.abspath(os.path.dirname(__file__))
|
||
|
README = open(os.path.join(here, 'README.txt')).read()
|
||
|
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
|
||
|
|
||
|
requires = [
|
||
|
'SQLAlchemy', 'PyQt5',
|
||
|
]
|
||
|
|
||
|
setup(name='summer',
|
||
|
version='3.4',
|
||
|
description='summer',
|
||
|
long_description=README + '\n\n' + CHANGES,
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python",
|
||
|
],
|
||
|
author='Tanshu',
|
||
|
author_email='summer@tanshu.com',
|
||
|
url='http://tanshu.com',
|
||
|
keywords='',
|
||
|
packages=find_packages(),
|
||
|
include_package_data=True,
|
||
|
zip_safe=False,
|
||
|
install_requires=requires,
|
||
|
tests_require=requires,
|
||
|
test_suite="summer",
|
||
|
)
|
||
|
|