forked from societe-generale/core-nlg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 670 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 670 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
26
27
# -*- coding: utf-8 -*-
"""
created on 20/12/2018 16:37
@author: fgiely
"""
from setuptools import setup, find_packages
import CoreNLG
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="CoreNLG",
version="2.1.1",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/societe-generale/core-nlg.git",
author="Fabien Giely",
license="Apache v2",
packages=find_packages(exclude=["*.logs"]),
include_package_data=True,
cmdclass={"package": CoreNLG},
zip_safe=False,
install_requires=["lxml"],
)