-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 951 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 951 Bytes
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
from setuptools import find_packages
from distutils.core import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='CopyleaksPythonSDK',
packages=find_packages(exclude=['tests*']),
version='0.1',
description='A Python SDK for Copyleaks (http://copyleaks.com)',
long_description=readme(),
author='Waqas Younas',
author_email='waqas.younas@gmail.com',
url = 'https://github.com/wyounas/copyleaks-python-sdk', # use the URL to the github repo
keywords=['copyleaks', 'copyleakssdk', 'sdk'],
install_requires=[
'requests',
'retrying'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
]
)