forked from wesleyfr/boxpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.02 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.02 KB
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
32
33
34
from setuptools import setup, find_packages
setup(
name='boxpython',
version='1.0.5',
description='Box Python SDK for v2 of the Box.com API.',
long_description="Full documentation : http://github.com/wesleyfr/boxpython",
url='http://github.com/wesleyfr/boxpython/',
license='MIT',
author='wesleyfr',
#author_email='hs@ox.cx',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['requests',],
)
#PyPI updates
#
#python setup.py sdist
#python setup.py bdist_wheel
#python setup.py register
#python setup.py sdist upload
#python setup.py bdist_wheel upload