|
1 | | -from setuptools import setup, Command, find_packages |
2 | | -import os |
3 | | -import sys |
| 1 | +from setuptools import setup, find_packages |
4 | 2 |
|
5 | 3 | meta = {} |
6 | 4 | with open("smithers/meta.py") as fp: |
7 | 5 | exec(fp.read(), meta) |
8 | 6 |
|
9 | 7 | # Package meta-data. |
10 | 8 | NAME = meta['__title__'] |
11 | | -DESCRIPTION = "Smithers' a Mathematical Interdisciplinary Toolbox for Helping Engineers Researchers and Scientist" |
| 9 | +DESCRIPTION = ( |
| 10 | + "Smithers' a Mathematical Interdisciplinary Toolbox for Helping Engineers " |
| 11 | + "Researchers and Scientist" |
| 12 | +) |
12 | 13 | URL = 'https://github.com/mathLab/Smithers' |
13 | 14 | MAIL = meta['__mail__'] |
14 | 15 | AUTHOR = meta['__author__'] |
15 | 16 | VERSION = meta['__version__'] |
16 | | -KEYWORDS='' |
| 17 | +KEYWORDS = 'toolbox math' |
17 | 18 |
|
18 | 19 | REQUIRED = [ |
19 | 20 | 'future', 'numpy', 'scipy', 'matplotlib', |
|
22 | 23 | EXTRAS = { |
23 | 24 | 'docs': ['Sphinx', 'sphinx_rtd_theme'], |
24 | 25 | 'vtk': ['vtk'], |
| 26 | + 'test': ['pytest', 'pytest-cov'], |
25 | 27 | } |
26 | 28 |
|
27 | 29 | LDESCRIPTION = ( |
|
39 | 41 | long_description=LDESCRIPTION, |
40 | 42 | author=AUTHOR, |
41 | 43 | author_email=MAIL, |
42 | | - classifiers=[ |
| 44 | + classifiers=[ |
43 | 45 | 'Development Status :: 2 - Pre-Alpha', |
44 | 46 | 'License :: OSI Approved :: MIT License', |
45 | 47 | 'Programming Language :: Python :: 3', |
|
48 | 50 | 'Programming Language :: Python :: 3.7', |
49 | 51 | 'Intended Audience :: Science/Research', |
50 | 52 | 'Topic :: Scientific/Engineering :: Mathematics' |
51 | | - ], |
52 | | - keywords=KEYWORDS, |
53 | | - url=URL, |
54 | | - license='MIT', |
55 | | - packages=find_packages(), |
| 53 | + ], |
| 54 | + keywords=KEYWORDS, |
| 55 | + url=URL, |
| 56 | + license='MIT', |
| 57 | + packages=find_packages(), |
56 | 58 | install_requires=REQUIRED, |
57 | 59 | extras_require=EXTRAS, |
58 | | - test_suite='nose.collector', |
59 | | - tests_require=['nose'], |
60 | | - include_package_data=True, |
| 60 | + include_package_data=True, |
61 | 61 | package_data={ |
62 | 62 | NAME: ["dataset/datasets/*/*.npy"], |
63 | 63 | }, |
64 | | - zip_safe=False, |
| 64 | + zip_safe=False, |
65 | 65 | ) |
0 commit comments