-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
33 lines (30 loc) · 879 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
27
28
29
30
31
32
33
from setuptools import setup
import sys
if sys.version_info < (3, 5):
raise RuntimeError("This package requres Python 3.5+")
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='annexlang',
version='0.4',
description='A description language for drawing communication protocols in TeX documents.',
url='http://github.com/webhamster/annexlang',
author='Daniel Fett',
author_email='[email protected]',
license='MIT',
packages=['annexlang'],
zip_safe=False,
scripts=['bin/annex-convert'],
install_requires=[
'pyyaml',
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
long_description=readme(),
include_package_data=True,
)
python_requires='>=3.5'