Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • b811828cfeb464cfe01bb2b11afc2a38907e1698
  • master par défaut
  • test_upgrade
  • francedata_fixes
  • api_import
  • fix-francedata-master
  • api
  • badges
  • codecov_badge
  • parltrack
  • pr
  • parltrack_in_representatives
  • test_import_from_compotista
  • travis
  • old_master
  • fix_import
  • 0.0.35
  • 0.0.34
  • 0.0.33
  • 0.0.32
  • 0.0.31
  • 0.0.30
  • 0.0.29
  • 0.0.28
  • 0.0.27
  • 0.0.26
  • 0.0.25
  • 0.0.24
  • 0.0.23
  • 0.0.22
  • 0.0.21
  • 0.0.20
  • 0.0.19
  • 0.0.17
  • 0.0.16
  • 0.0.14
36 résultats

setup.py

Blame
  • setup.py 1,27 Kio
    from setuptools import find_packages, setup
    
    setup(
        name='django-representatives',
        version='0.0.13',
        description='Base app for government representative',
        author='Laurent Peuch, Olivier Le Thanh Duong, Yohan Boniface, Arnaud Fabre, James Pic',
        author_email='webmaster@memopol.org',
        url='http://github.com/political-memory/django-representatives',
        packages=find_packages(),
        include_package_data=True,
        license='GPLv3',
        keywords='django government parliament',
        install_requires=[
            'ijson',
        ],
        extras_require={
            'celery': 'celery',
            'api': [
                'django-filter',
                'djangorestframework',
            ]
        },
        entry_points={
            'console_scripts': [
                'parltrack_import_representatives = representatives.contrib.parltrack.import_representatives:main',
            ]
        },
        classifiers=[
            'Development Status :: 4 - Beta',
            'Environment :: Web Environment',
            'Framework :: Django',
            'Intended Audience :: Developers',
            'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
            'Operating System :: OS Independent',
            'Programming Language :: Python :: 2',
            'Topic :: Software Development :: Libraries :: Python Modules',
        ]
    )