-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
52 lines (40 loc) · 1.4 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from codecs import open
from os import path
import re
here = path.abspath(path.dirname(__file__))
__version__ = '0.0.3'
with open(path.join(here, 'README.md')) as readme:
LONG_DESC = readme.read()
with open(path.join(here, 'requirements.txt')) as f:
requirements = [line.strip() for line in f.read().splitlines()]
setup(
name='tlfp',
version=__version__,
description='Data generator for the-law-factory project lafabriquedelaloi.fr',
long_description=LONG_DESC,
long_description_content_type='text/markdown',
license="GPL",
url='https://github.com/regardscitoyens/the-law-factory-parser',
author='Regards Citoyens',
author_email='contact@regardscitoyens.org',
include_package_data=True,
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
],
keywords='scraping politics data',
packages=find_packages(),
install_requires=requirements,
scripts=[
'bin/tlfp-parse-text',
'bin/tlfp-parse',
'bin/tlfp-parse-many',
],
)