forked from QC-Technologies/copyleaks-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 912 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 912 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
from setuptools import find_packages
from distutils.core import setup
setup(
name = 'CopyleaksSDK',
packages=find_packages(exclude=['tests*']), # this must be the same as the name above
version = '0.1',
description = 'A Python SDK for Copyleaks (http://copyleaks.com)',
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'], # arbitrary keywords
install_requires=[
'requests',
'pytest'
],
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',
]
)