-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (27 loc) · 1.13 KB
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
from setuptools import setup
from os import path
from codecs import open
from setuptools.command.install import install
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'ScalPy',
version = '0.2.0',
install_requires = ['numpy', 'scipy',],
# metadata for upload to PyPI
author = "Sumit Kumar, Abhishek Jana and Anjan A. Sen",
author_email = "sumit@ctp-jamia.res.in",
description = "a package for studying dynamics of scalar fields in cosmology.",
url = "http://github.com/sum33it/scalpy", # project home page
keywords = ("scalar field dynamics" + "cosmology"),
license = "GNU GENERAL PUBLIC LICENSE v3",
long_description = long_description,
packages = ['scalpy',],
classifiers = ['License :: OSI Approved :: GNU General Public License v3 (GPLv3) ',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Operating System :: OS Independent'
]
)