-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 943 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
# allow setup.py to be run from any path and open files
# os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
try:
REQUIREMENTS = open('requirements.txt').read()
except:
REQUIREMENTS = None
try:
README = open('README.md').read()
except:
README = None
setup(
name='django-la-cms',
version="v0.3.0",
description=(
'Django app for a simple content management system'
),
long_description=README,
install_requires=REQUIREMENTS,
# dependency_links=['https://github.com/laborautonomo/django-la-tags/tarball/master#egg=django-la-tags-v0.3.0'],
author='Fábio Piovam Elias',
author_email='[email protected]',
url='https://github.com/laborautonomo/django-la-cms/',
packages=find_packages(),
include_package_data=True,
# zip_safe=False,
)