-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
32 lines (29 loc) · 916 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
# Package imports
from setuptools import find_packages, setup
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
# Setup function declaration
setup(
name="Pippin",
version="0.1.1",
author="Samuel Hinton",
author_email="[email protected]",
description="Pipeline for Supernova Cosmology",
long_description="Pipeline for Supernova Cosmology",
url="https://github.com/dessn/Pippin",
license="MIT",
platforms=["Linux", "Unix"],
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
],
python_requires=">=3.7",
packages=find_packages(),
package_dir={"pippin": "pippin"},
include_package_data=True,
install_requires=requirements,
zip_safe=False,
)