forked from mikegrudic/CrunchSnaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.18 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
import setuptools, os
from setuptools import setup
#with open("README.md", "r", encoding="utf-8") as fh:
# long_description = fh.read()
thelibFolder = os.path.dirname(os.path.realpath(__file__))
requirementPath = thelibFolder + '/requirements.txt'
install_requires = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()
setup(name='CrunchSnaps',
version='0.1',
description='Package for running efficient passes on GIZMO simulation data',
# long_description=long_description,
url='http://github.com/mikegrudic/CrunchSnaps',
author='Mike Grudić',
author_email='[email protected]',
license='MIT',
# packages=['meshoid'],
project_urls={
"Bug Tracker": "https://github.com/mikegrudic/CrunchSnaps",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
zip_safe=False,
install_requires=install_requires
)