-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 732 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 732 Bytes
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
import os
from os.path import join, dirname
from setuptools import setup, find_packages
from version import get_version
os.umask(0o022)
setup(
name='legi',
version=get_version(),
description="Tools to work with the database of French laws (LEGI)",
author='Changaco',
author_email='changaco@changaco.oy.lc',
url='https://github.com/Legilibre/legi.py',
license='CC0',
packages=find_packages(exclude=['tests']),
long_description=open(join(dirname(__file__), 'README.md')).read(),
long_description_content_type='text/markdown',
install_requires=open(join(dirname(__file__), 'requirements.txt')).read(),
keywords='legi law france',
include_package_data=True,
zip_safe=False,
)