-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·48 lines (38 loc) · 1.12 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
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
import os
import re
import versioneer
# Get the long description from the relevant file
with open('DESCRIPTION.rst') as f:
long_description = f.read()
setup(
name="cfcal",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Python calculator for crystal fields",
long_description=long_description,
url='http://github.com/rayosborn/cfcal',
author='Ray Osborn',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='rare earth crystal fields',
package_dir = {'': 'src'},
packages=find_packages('src'),
package_data={
'cfcal': ['*.ini'],
},
# entry_points={
# 'console_scripts': [
# 'sample=sample:main',
# ],
# },
requires=['scipy', 'numpy'],
)