-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (29 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), 'rt') as f:
long_description = f.read()
setup(name='cantal',
version='0.2.5',
description='The library that submits metrics to cantal',
author='Paul Colomiets',
author_email='[email protected]',
url='http://github.com/tailhook/cantal-py',
packages=['cantal'],
package_data={"cantal": ["py.typed", "*.pyi"]},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Apache Software License',
],
long_description=long_description,
license="MIT/Apache-2.0",
)