-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (34 loc) · 1.18 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='python-spore-codec',
version='0.3.1',
description='Spore codec for CoreAPI specification',
long_description=readme,
author='Arnaud Grausem',
author_email='[email protected]',
url='https://github.com/unistra/python-spore-codec',
license='GPLv3',
include_package_data=True,
install_requires=['coreapi'],
# extra_requires={
# 'test': ['coverage', 'pytest', 'pytest-cov']
# },
packages=find_packages(exclude=('tests', 'docs')),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='coreapi spore api-description rest-api'
)