forked from akretion/roulier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (25 loc) · 905 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = open('VERSION').read().strip()
download_url = "https://github.com/akretion/roulier/archive/%s.zip" % version
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="roulier",
version=version,
packages=find_packages(),
install_requires=[
'lxml', 'Jinja2', 'requests', 'cerberus', 'zplgrf',
'unidecode'],
author="Hparfr <https://github.com/hparfr>",
author_email="roulier@hpar.fr",
description="Label parcels without pain",
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
package_data={'roulier': ['*.xml', '*.xsl', '*.zpl']},
url="https://github.com/akretion/roulier",
download_url=download_url,
keywords=['carrier', 'logistics', 'delivery'],
)