|
1 | 1 | from setuptools import setup |
| 2 | +from os import path |
| 3 | +this_directory = path.abspath(path.dirname(__file__)) |
| 4 | +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: |
| 5 | + long_description = f.read() |
2 | 6 |
|
3 | | -setup(name = 'pythonvrft-alessior', |
4 | | - version = '0.0.3', |
5 | | - description = 'VRFT Python Library', |
6 | | - long_description = 'VRFT Python Library', |
7 | | - keywords = 'VRFT Virtual Reference Feedback Tuning Adaptive Control', |
8 | | - url = 'https://github.com/rssalessio/PythonVRFT/', |
9 | | - author = 'Alessio Russo', |
10 | | - author_email = 'alessior@kth.se', |
11 | | - license='GPL3', |
12 | | - packages=['vrft', 'test'], |
13 | | - zip_safe=False, |
14 | | - install_requires = [ |
15 | | - 'scipy', |
16 | | - 'numpy', |
17 | | - ], |
18 | | - test_suite = 'nose.collector', |
19 | | - test_requires = ['nose'], |
20 | | - classifiers=[ |
| 7 | + |
| 8 | +setup(name = 'pythonvrft', |
| 9 | + version = '0.0.4', |
| 10 | + description = 'VRFT Python Library', |
| 11 | + long_description = long_description, |
| 12 | + long_description_content_type = 'text/markdown', |
| 13 | + keywords = 'VRFT Virtual Reference Feedback Tuning Adaptive Control', |
| 14 | + url = 'https://github.com/rssalessio/PythonVRFT/', |
| 15 | + author = 'Alessio Russo', |
| 16 | + author_email = 'alessior@kth.se', |
| 17 | + license='GPL3', |
| 18 | + packages=['vrft', 'test'], |
| 19 | + zip_safe=False, |
| 20 | + install_requires = [ |
| 21 | + 'scipy', |
| 22 | + 'numpy', |
| 23 | + ], |
| 24 | + test_suite = 'nose.collector', |
| 25 | + test_requires = ['nose'], |
| 26 | + classifiers=[ |
21 | 27 | "Programming Language :: Python :: 3", |
22 | | - "License :: OSI Approved :: GPL3 License", |
| 28 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
23 | 29 | "Operating System :: OS Independent", |
| 30 | + "Development Status :: 3 - Alpha", |
| 31 | + "Topic :: Scientific/Engineering" |
24 | 32 | ], |
25 | | - python_requires='>=3.5', |
| 33 | + python_requires='>=3.5', |
26 | 34 | ) |
0 commit comments