-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (34 loc) · 1.02 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
from distutils.core import setup
from setuptools import find_packages
# versioning
MAJOR = 1
MINOR = 0
MAINT = 8
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MAINT)
PACKAGES = find_packages()
# falass setup
setup(
name='falass',
version=VERSION,
description='Neutron and X-ray Reflectometry from Computer Simulation',
author='Andrew R. McCluskey',
author_email='arm61@bath.ac.uk',
long_description=open('README.md').read(),
license='MIT',
url='http://people.bath.ac.uk/arm61/falass/',
packages=PACKAGES,
platforms=['Windows', 'Linux', 'Solaris', 'Mac OS-X', 'Unix'],
install_requires=[
'numpy', 'matplotlib', 'scipy'
],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3',
]
)