Skip to content

Commit

Permalink
可以使用pip下载了
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongbeer committed Feb 14, 2017
1 parent 547db67 commit 8e36d6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions _Python_Part_/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
from setuptools import setup, find_packages
import sys, os

version = '0.1'
version = '1.0'

setup(name='Veins',
version=version,
description="Simulations of Traffic System Based on the Theory of Cellular Automaton",
long_description="""\
Simulations of Traffic System Based on the Theory of Cellular Automaton
""",
classifiers=[
"License :: OSI Approved :: MIT License",
Expand All @@ -18,18 +19,18 @@
"Topic :: Scientific/Engineering :: Mathematics"
],
keywords='',
author='EmdeBoas',
author='xiongbeer',
author_email='[email protected]',
url='https://github.com/xiongbeer/Veins',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
packages=find_packages('veins'),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'pandas',
'pandas>=0.19',
'matplotlib',
'numpy'
'numpy',
'colorama'
],
entry_points="""
Expand Down
1 change: 1 addition & 0 deletions _Python_Part_/veins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#!/usr/bin/env python
# coding=utf-8

0 comments on commit 8e36d6b

Please sign in to comment.