forked from armstrong/armstrong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.48 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
from datetime import datetime
from distutils.core import setup
import os
import subprocess
if os.path.exists("MANIFEST"):
os.unlink("MANIFEST")
VERSION = ("11", "09", "0", )
setup(
name='armstrong',
version=".".join(VERSION),
description="Armstrong is an open-source publishing system designed for news organizations that gives your team the technology edge it needs to report in a media-rich environment.",
long_description=open("README.rst").read(),
author='Bay Citizen & Texas Tribune',
author_email='[email protected]',
url='http://github.com/armstrong/armstrong/',
packages=["armstrong", ],
namespace_packages=["armstrong", ],
install_requires=[
"armstrong.cli>=1.0.0,<1.1",
"armstrong.core.arm_access>=1.0.0,<1.1",
"armstrong.core.arm_content>=1.0.0,<1.1",
"armstrong.core.arm_layout>=1.0.0,<1.1",
"armstrong.core.arm_sections>=1.0.0,<1.1",
"armstrong.core.arm_wells>=1.0.1,<1.1",
"armstrong.apps.articles>=1.0.0,<1.1",
"armstrong.apps.content>=1.0.0,<1.1",
"armstrong.apps.images>=1.0.0,<1.1",
"armstrong.apps.related_content>=1.0.0,<1.1",
"armstrong.hatband>=1.0.0,<1.1",
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)