-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 866 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='pysagec',
version='0.1.2',
url='https://github.com/migonzalvar/pysagec',
license='MIT',
author='Miguel Gonzalez',
author_email='[email protected]',
description='Python client to SAGEC MRW webservices.',
long_description=long_description,
packages=find_packages(exclude=['tests*']),
zip_safe=False,
include_package_data=True,
platforms='any',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)