-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.27 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
#!/usr/bin/env python3
from pathlib import Path
from typing import List
from setuptools import setup, find_packages
def parse_requirements_txt(filename: str) -> List[str]:
"""Return requirements from requirements file."""
with open(str(Path(__file__).with_name(filename))) as f:
return f.readlines()
long_description = "LibRep is a representation framework."
setup(name='librep',
version='0.0.1',
description='librep',
author='H.IAAC',
author_email='onapoli@lmcad.ic.unicamp.br',
license="Apache v2.0",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/otavioon/librep-hiaac",
install_requires=parse_requirements_txt("requirements.txt"),
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache License, Version 2.0",
"Operating System :: OS Independent",
],
platforms='any',
packages=find_packages(),
python_requires=">=3.7",
)