-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
55 lines (44 loc) · 1.56 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
from pathlib import Path
from typing import List
import setuptools
# The directory containing this file
HERE = Path(__file__).parent.resolve()
# The text of the README file
NAME = 'gefest'
AUTHOR = 'NSS Lab'
SHORT_DESCRIPTION = 'The toolbox for the generative design of physical objects'
README = Path(HERE, 'README.rst').read_text()
URL = 'https://github.com/ITMO-NSS-team/GEFEST'
VERSION = '0.2.0'
REQUIRES_PYTHON = '>=3.9'
LICENSE = 'BSD 3-Clause'
def _readlines(*names: str, **kwargs) -> List[str]:
encoding = kwargs.get('encoding', 'utf-8')
lines = Path(__file__).parent.joinpath(*names).read_text(encoding=encoding).splitlines()
return list(map(str.strip, lines))
def _extract_requirements(file_name: str):
return [line for line in _readlines(file_name) if line and not line.startswith('#')]
def _get_requirements(req_name: str):
requirements = _extract_requirements(req_name)
return requirements
setuptools.setup(
name=NAME,
author=AUTHOR,
author_email='[email protected]',
description=SHORT_DESCRIPTION,
long_description=README,
long_description_content_type='text/x-rst',
url=URL,
version=VERSION,
python_requires=REQUIRES_PYTHON,
license=LICENSE,
packages=setuptools.find_packages(exclude=['test*']),
package_data={'': ['*']},
include_package_data=True,
install_requires=_get_requirements('requirements.txt'),
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)