-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 775 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 775 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
32
from setuptools import setup, find_packages
version = '1.0'
LONG_DESCRIPTION = """
Thin wrapper for Solve360 API.
"""
setup(
name='python-solve-threesixty',
version=version,
description="python-solve-threesixty",
long_description=LONG_DESCRIPTION,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django (optional)",
"Environment :: Web Environment",
],
keywords='solve360,django',
author='Alvin Mites',
author_email='alvin@mitesdesign.com',
license='BSD',
packages=find_packages(),
package_data={
'solve_threesixty': [
'*'
],
},
include_package_data=True,
zip_safe=False,
)