-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# For copyright and license terms, see COPYRIGHT.rst (top level of repository)
# Repository: https://github.com/C3S/collecting_society.portal.creative
import os
from setuptools import setup, find_packages
MODULE = 'collecting_society_portal_creative'
PREFIX = 'c3s'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGELOG.rst')) as f:
CHANGELOG = f.read()
requires = [
'%s_collecting_society_portal' % (PREFIX),
]
setup(
name='%s_%s' % (PREFIX, MODULE),
version='0.1',
description=(
'Plugin for collecting_society.portal including: Artists, Creations'
),
long_description=README + '\n\n' + CHANGELOG,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Framework :: Pyramid',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Legal Industry',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Natural Language :: German',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Office/Business',
'Topic :: Office/Business :: Financial :: Accounting',
'Topic :: Artistic Software',
],
license='AGPL-3',
author='Alexander Blum',
author_email='[email protected]',
url='https://github.com/C3S/collecting_society.portal.creative',
keywords='web pyramid pylons collecting society',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite='%s' % (MODULE),
)