-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (44 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#! /usr/bin/env python
# --- import -------------------------------------------------------------------------------------
import os
from setuptools import setup, find_packages
# --- define -------------------------------------------------------------------------------------
here = os.path.abspath(os.path.dirname(__file__))
extra_files = []
extra_files.append(os.path.join(here, "CONTRIBUTORS"))
extra_files.append(os.path.join(here, "LICENSE"))
extra_files.append(os.path.join(here, "README.md"))
extra_files.append(os.path.join(here, "research_kit", "VERSION"))
# --- setup --------------------------------------------------------------------------------------
with open(os.path.join(here, "requirements.txt")) as f:
required = f.read().splitlines()
with open(os.path.join(here, "research_kit", "VERSION")) as version_file:
version = version_file.read().strip()
setup(
name="research_kit",
version=version,
packages=find_packages(),
package_data={"": extra_files},
install_requires=required,
author="Darien Morrow",
author_email="[email protected]",
license="MIT",
url="https://github.com/darienmorrow/research_kit",
keywords="photophysics spectroscopy science",
entry_points={
"console_scripts": [
"dir_PL_work=research_kit.__main__:read_plot_save",
"dir_hl3=research_kit.__main__:dir_hl3",
]
},
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)