dataCreating/setup.py

33 lines
837 B
Python
Raw Normal View History

2023-10-25 02:22:17 +00:00
from setuptools import setup, find_packages
install_requires=[]
for line in open('requirements.txt'):
install_requires.append(line.strip())
setup(name='dataCreating',
version='0.0.1',
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: -*-
""",
)