-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 998 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 998 Bytes
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
#!/usr/bin/env python
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
packages = find_packages()
install_requires = [line.strip() for line in open('requirements.txt')]
setup(name='rtac',
version='0.0.1.3',
description=("RTAC is a collection of Realtime Algorithm"
" Configuration methods."),
long_description=README,
long_description_content_type="text/markdown",
url='https://github.com/DimitriWeiss/RTAC.git',
author='Dimitri Weiß',
author_email='dimitri-weiss@web.de',
packages=find_packages(exclude=["*.tests"]),
include_package_data=True,
license='LICENSE',
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.10',
],
install_requires=install_requires,
entry_points={},
)