forked from pkienzle/periodictable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (34 loc) · 1.22 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import fix_setuptools_chmod
import sys
import periodictable
if len(sys.argv) == 1:
sys.argv.append('install')
dist = setup(
name = 'periodictable',
version = periodictable.__version__,
author='Paul Kienzle',
author_email='pkienzle@gmail.com',
url='http://www.reflectometry.org/danse/elements.html',
description='Extensible periodic table of the elements',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
],
packages = find_packages(),
package_data = {
'periodictable' :
['xsf/*.nff', 'xsf/f0_WaasKirf.dat', 'xsf/read.me'],
},
#data_files = periodictable.data_files(),
install_requires = ['pyparsing', 'numpy'],
)
# End of file