forked from uservoice/uservoice-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 697 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 697 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
import os
import sys
import re
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='uservoice',
version='0.0.24',
description='UserVoice Python library',
url = 'http://pypi.python.org/pypi/uservoice/',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
author='UserVoice Inc.',
author_email='dev@uservoice.com',
packages=setuptools.find_packages(),
install_requires=[
'pycryptodome',
'pytz',
'PyYAML',
'requests',
'future',
'requests-oauthlib'],
test_suite='test',
)