-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1004 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='compphys',
version='0.1',
description='Effective Computation in Physics',
author='Anthony Scopatz and Kathryn D. Huff',
author_email='[email protected]',
url='http://physics.codes',
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
license='BSD-3-Clause',
zip_safe=False,
packages=['compphys', 'compphys.more', 'compphys.tests'],
package_dir={
'compphys': 'compphys',
'compphys.more': 'compphys/more',
'compphys.tests': 'compphys/tests',
},
include_package_data=True,
# or you can specify explicitly:
package_data={
'compphys': ['assets/*.txt']
},
)
if __name__ == "__main__":
setup()