-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (23 loc) · 863 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
import setuptools
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Stolen from: https://packaging.python.org/tutorials/packaging-projects/ and
# https://github.com/pypa/sampleproject/blob/master/setup.py
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="galsim-timeit",
version="0.0.1",
author="Skanda Kaashyap",
author_email="[email protected]",
description="A small add on to the GalSim tool to perform timing experiments.",
long_description=long_description,
url="https://github.com/kaashmonee/galsim-timeit",
packages=setuptools.find_packages(where='./'),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7.6",
)