-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (28 loc) · 902 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
32
33
from setuptools import find_packages, setup
from os.path import dirname, join
def read_file(filename):
with open(join(dirname(__file__), filename)) as f:
return f.read()
with open("requirements.txt", "r") as f:
required_packages = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pybeamline",
packages=[
"pybeamline",
"pybeamline.filters",
"pybeamline.sources",
"pybeamline.mappers",
"pybeamline.algorithms",
"pybeamline.algorithms.conformance",
"pybeamline.algorithms.discovery",
],
version="1.0.6",
description="Python version of Beamline (based on ReactiveX)",
long_description=long_description,
long_description_content_type="text/markdown",
author="Andrea Burattin",
license="Apache-2.0",
install_requires=required_packages
)