-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (35 loc) · 1.21 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
37
38
39
40
41
# -*- coding: utf-8 -*-
"""Setup file for LatteDB
"""
__author__ = "@cchang5, @ckoerber"
__version__ = "0.2.0"
from os import path
from setuptools import setup, find_packages
CWD = path.abspath(path.dirname(__file__))
with open(path.join(CWD, "README.md"), encoding="utf-8") as inp:
LONG_DESCRIPTION = inp.read()
with open(path.join(CWD, "requirements.txt"), encoding="utf-8") as inp:
REQUIREMENTS = [el.strip() for el in inp.read().split(",")]
setup(
name="lattedb",
version=__version__,
description=None,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/callat-qcd/lattedb",
author=__author__,
author_email=None,
keywords=[],
packages=find_packages(exclude=["docs", "tests"]),
install_requires=REQUIREMENTS,
include_package_data=True,
entry_points={"console_scripts": ["lattedb=lattedb.manage:main"]},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django :: 2.2",
"Intended Audience :: Science/Research",
],
)