-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 794 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 794 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
from setuptools import find_packages, setup
with open('requirements.txt') as f:
install_req = [req.strip() for req in f.read().split('\n')]
install_req = [req for req in install_req if req and req[0] != '#']
with open("readme.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='icon-artist',
version='0.0.1',
description='Post-processing and plotting ICON-ART output in python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pankajkarman/ARTist',
author='Pankaj Kumar',
author_email='pankaj.kmr1990@gmail.com',
license='MIT',
packages=find_packages(),
py_modules=['art'],
install_requires=install_req,
setup_requires=['setuptools'],
)