-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (26 loc) · 839 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
import os
import setuptools
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.md"), "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as req_file:
REQUIRED = req_file.readlines()
DEV_REQUIRE = ["pytest"]
setuptools.setup(
name="heptfds",
version="0.0.1",
author="Eric Wulff",
author_email="eric.wulff@cern.ch",
description="Repository for storing custom HEP datasets",
install_requires=REQUIRED,
extras_require={"dev": DEV_REQUIRE},
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)