33 lines
837 B
Python
33 lines
837 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
install_requires=[]
|
|
|
|
for line in open('requirements.txt'):
|
|
install_requires.append(line.strip())
|
|
|
|
setup(name='dataCreating',
|
|
version='1.0.3',
|
|
description='',
|
|
long_description="""\
|
|
""",
|
|
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers # nopep8
|
|
classifiers=[
|
|
"Programming Language :: Python",
|
|
],
|
|
keywords='',
|
|
author='mh',
|
|
author_email='menghan@unary.com.cn',
|
|
url='',
|
|
license='GPL',
|
|
packages=find_packages(exclude=["ez_setup","test.*", "test"]),
|
|
namespace_packages=[],
|
|
include_package_data=True,
|
|
test_suite='nose.collector',
|
|
zip_safe=False,
|
|
install_requires=install_requires,
|
|
entry_points="""
|
|
# -*- Entry points: -*-
|
|
""",
|
|
)
|