-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (29 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (29 loc) · 1.01 KB
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
from pathlib import Path
from setuptools import setup
requirements = Path(__file__).parent / 'requirements.txt'
with requirements.open(mode='rt', encoding='utf-8') as fp:
install_requires = [line.strip() for line in fp]
readme = Path(__file__).parent / 'README.rst'
with readme.open(mode='rt', encoding='utf-8') as fp:
readme_text = fp.read()
VERSION = '0.0.1'
setup(
name='numerical_algorithms',
maintainer='Luka Shostenko',
maintainer_email='luka.shostenko@gmail.com',
version='{version}'.format(
version=VERSION,
),
download_url='https://github.com/LShostenko/numerical_algorithms/archive/{version}.tar.gz'.format( # noqa
version=VERSION,
),
description='Optimized numerical routines.',
long_description=readme_text,
license='Apache License 2.0',
author='Luka Shostenko',
author_email='luka.shostenko@gmail.com',
packages=['numerical_algorithms'],
python_requires='>=3.5.0',
install_requires=install_requires,
include_package_data=True,
)