-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (39 loc) · 1.63 KB
/
setup.py
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
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
from opps import infographics
install_requires = ["opps", 'opps-timelinejs']
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
'Topic :: Software Development :: Libraries :: Python Modules']
dependency_links = ['https://github.com/opps/opps-timelinejs/tarball/master'
'#egg=opps-timelinejs']
try:
long_description = open('README.md').read()
except:
long_description = infographics.__description__
setup(
name='opps-infographics',
namespace_packages=['opps', 'opps.infographics'],
version=infographics.__version__,
description=infographics.__description__,
long_description=long_description,
classifiers=classifiers,
keywords='infographic opps cms django apps magazines websites',
author=infographics.__author__,
author_email=infographics.__email__,
url='http://oppsproject.org',
download_url="https://github.com/opps/opps-infographics/tarball/master",
license=infographics.__license__,
packages=find_packages(exclude=('doc', 'docs',)),
package_dir={'opps': 'opps'},
install_requires=install_requires,
dependency_links=dependency_links,
)