-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.24 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.24 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
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
#from distutils.core import setup
from setuptools import setup, find_packages
from git_version import sdist, get_version
import os.path
import glob
setup(
name = 'ScatPy',
version = get_version(),
author = 'Andrew G. Mark',
author_email = 'mark@is.mpg.de',
packages = ['ScatPy'],
url = 'https://github.com/hohlraum/ScatPy',
platforms = 'All',
license = 'GNU GPLv3',
description = 'A Python package for setting up DDSCAT jobs and analysing the results.',
long_description = open('README.txt').read(),
cmdclass = {"sdist": sdist },
package_data = {'ScatPy': ['profiles/*']},
package_dir = {'ScatPy': 'ScatPy'},
zip_safe = True,
install_requires=[
'numpy', 'scipy', 'matplotlib',
],
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
]
)