-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
François Jolain
committed
Feb 17, 2020
1 parent
15dd14d
commit 40921b1
Showing
4 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
# Pycharm | ||
**/.idea | ||
|
||
# Python cache | ||
*.pyc | ||
|
||
# Virtual env | ||
/venv | ||
|
||
**/.ipynb_checkpoints | ||
# jupyter notebook | ||
**/.ipynb_checkpoints | ||
|
||
# setuptool dist output | ||
**/dist | ||
**/hadar.egg-info | ||
**/build |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="hadar", | ||
version="0.1.0", | ||
author="RTE France", | ||
author_email="francois.jolain@rte-international.com", | ||
description="python adequacy library", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/hadar-simulator/hadar", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.6', | ||
) |