-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
52 lines (36 loc) · 1.36 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
import setuptools
from pip._internal.network.session import PipSession
from pip._internal.req import parse_requirements
with open('README.md', 'r') as fh:
long_description = fh.read()
requirements = parse_requirements(
filename='requirements.txt',
session=PipSession()
)
setuptools.setup(
name='python-polar-coding',
version='0.0.1',
description='Polar coding implementation in Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/fr0mhell/python-polar-coding',
author='Grigory Timofeev',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
keywords='polar codes, fec, simulation',
packages=setuptools.find_packages(),
python_requires='>=3.6, <4',
install_requires=[req.requirement for req in requirements],
project_urls={ # Optional
'Bug Report': 'https://github.com/fr0mhell/python-polar-coding/issues',
'Source': 'https://github.com/fr0mhell/python-polar-coding',
},
)