-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (31 loc) · 1.11 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='candideitorg-django',
version='0.0.1',
description='',
license='GNU Affero General Public License v3',
author='Fundación Ciudadano Inteligente',
author_email='lab@ciudadanointeligente.org',
url='https://github.com/ciudadanointeligente/candideitorg-django',
long_description=open('README.md', 'r').read(),
# Not convinced that this is correct - it skips the fixture which are .js files
packages=find_packages(),
requires=[],
install_requires=required,
tests_require=[],
classifiers=[
# choose from https://pypi.python.org/pypi?:action=list_classifiers
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)