Skip to content

Commit fe0ec4f

Browse files
authored
Merge pull request #27 from ndem0/setup
clean setup
2 parents 8c237c1 + 0c977c8 commit fe0ec4f

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

setup.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1-
from setuptools import setup, Command, find_packages
2-
import os
3-
import sys
1+
from setuptools import setup, find_packages
42

53
meta = {}
64
with open("smithers/meta.py") as fp:
75
exec(fp.read(), meta)
86

97
# Package meta-data.
108
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+
)
1213
URL = 'https://github.com/mathLab/Smithers'
1314
MAIL = meta['__mail__']
1415
AUTHOR = meta['__author__']
1516
VERSION = meta['__version__']
16-
KEYWORDS=''
17+
KEYWORDS = 'toolbox math'
1718

1819
REQUIRED = [
1920
'future', 'numpy', 'scipy', 'matplotlib',
@@ -22,6 +23,7 @@
2223
EXTRAS = {
2324
'docs': ['Sphinx', 'sphinx_rtd_theme'],
2425
'vtk': ['vtk'],
26+
'test': ['pytest', 'pytest-cov'],
2527
}
2628

2729
LDESCRIPTION = (
@@ -39,7 +41,7 @@
3941
long_description=LDESCRIPTION,
4042
author=AUTHOR,
4143
author_email=MAIL,
42-
classifiers=[
44+
classifiers=[
4345
'Development Status :: 2 - Pre-Alpha',
4446
'License :: OSI Approved :: MIT License',
4547
'Programming Language :: Python :: 3',
@@ -48,18 +50,16 @@
4850
'Programming Language :: Python :: 3.7',
4951
'Intended Audience :: Science/Research',
5052
'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(),
5658
install_requires=REQUIRED,
5759
extras_require=EXTRAS,
58-
test_suite='nose.collector',
59-
tests_require=['nose'],
60-
include_package_data=True,
60+
include_package_data=True,
6161
package_data={
6262
NAME: ["dataset/datasets/*/*.npy"],
6363
},
64-
zip_safe=False,
64+
zip_safe=False,
6565
)

0 commit comments

Comments
 (0)