-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
26 lines (23 loc) · 859 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='reedmuller',
version='1.1.2',
description='Reed-Muller encoding and decoding',
author='Sebastian Raaphorst',
author_email='[email protected]',
url='https://github.com/sraaphorst/reedmuller',
packages=['reedmuller'],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Mathematics',
],
keywords='mathematics combinatorics codes reedmuller',
license='Apache 2.0'
)