-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
40 lines (36 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from __future__ import absolute_import
from setuptools import setup, find_packages
from codecs import open
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='tovsolver',
version='0.1.1',
author='Anton Motornenko (FIAS)',
author_email='[email protected]',
description='TOV solver',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/amotornenko/TOVsolver',
license='GPLv3',
packages=find_packages(exclude=['doc', 'test']),
include_package_data=True,
package_data = {
'' : ['*.dat'],
},
install_requires=[
'numpy',
'scipy',
'matplotlib',
],
extras_require = {
},
#data_fies = [('tovsolver', [[os.path.join(data_dir, "data1")]
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
])