forked from aayush26/pirant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (29 loc) · 748 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (29 loc) · 748 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
from setuptools import setup
from setuptools import find_packages
setup(
name='pirant',
version='0.1.4dev1',
author="aayush",
author_email='aayushsingh.mail@gmail.com',
url="https://github.com/aayush26/pirant",
license='MIT',
description="DevRant wrapper in Python",
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords="devrant api wrapper",
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[
"colander",
"requests",
"future",
],
setup_requires=[
"pytest-runner"
],
tests_require=[
'pytest'
]
)