Skip to content

Commit

Permalink
Merge pull request #27 from ndem0/setup
Browse files Browse the repository at this point in the history
clean setup
  • Loading branch information
ndem0 authored Nov 16, 2021
2 parents 8c237c1 + 0c977c8 commit fe0ec4f
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
from setuptools import setup, Command, find_packages
import os
import sys
from setuptools import setup, find_packages

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

# Package meta-data.
NAME = meta['__title__']
DESCRIPTION = "Smithers' a Mathematical Interdisciplinary Toolbox for Helping Engineers Researchers and Scientist"
DESCRIPTION = (
"Smithers' a Mathematical Interdisciplinary Toolbox for Helping Engineers "
"Researchers and Scientist"
)
URL = 'https://github.com/mathLab/Smithers'
MAIL = meta['__mail__']
AUTHOR = meta['__author__']
VERSION = meta['__version__']
KEYWORDS=''
KEYWORDS = 'toolbox math'

REQUIRED = [
'future', 'numpy', 'scipy', 'matplotlib',
Expand All @@ -22,6 +23,7 @@
EXTRAS = {
'docs': ['Sphinx', 'sphinx_rtd_theme'],
'vtk': ['vtk'],
'test': ['pytest', 'pytest-cov'],
}

LDESCRIPTION = (
Expand All @@ -39,7 +41,7 @@
long_description=LDESCRIPTION,
author=AUTHOR,
author_email=MAIL,
classifiers=[
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
Expand All @@ -48,18 +50,16 @@
'Programming Language :: Python :: 3.7',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics'
],
keywords=KEYWORDS,
url=URL,
license='MIT',
packages=find_packages(),
],
keywords=KEYWORDS,
url=URL,
license='MIT',
packages=find_packages(),
install_requires=REQUIRED,
extras_require=EXTRAS,
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
include_package_data=True,
package_data={
NAME: ["dataset/datasets/*/*.npy"],
},
zip_safe=False,
zip_safe=False,
)

0 comments on commit fe0ec4f

Please sign in to comment.