-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
31 lines (27 loc) · 984 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
from setuptools import find_packages, setup
import versioneer
with open("requirements.txt") as f:
requirements = f.read().splitlines()
requirements = ["setuptools"] + requirements
setup(
name="pyxrf",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Brookhaven National Laboratory",
url="https://github.com/NSLS-II/PyXRF",
packages=find_packages(),
entry_points={"console_scripts": ["pyxrf = pyxrf.pyxrf_run:run"]},
package_data={"configs": ["*.json"], "pyxrf.core": ["*.yaml"]},
include_package_data=True,
install_requires=requirements,
python_requires=">=3.6",
license="BSD",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
"Intended Audience :: Science/Research",
],
)