-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 757 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 757 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
from distutils.core import setup
install_requires = []
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
setup(
name = 'SolOrder',
packages = ['SolOrder'],
version = '1.1.0', # Ideally should be same as your GitHub release tag varsion
description = 'Updated documentation',
author = 'Dibyendu Maity',
author_email = 'dibyendumaity1999@bose.res.in',
url = 'https://github.com/dmighty007/SolOrder',
download_url = 'https://github.com/dmighty007/SolOrder',
keywords = ['water', 'SOL', 'Order','Parameter'],
classifiers = [],
project_urls = {
"Bug Tracker": "https://github.com/dmighty007/SolOrder/issues"
},
license='MIT',
install_requires=install_requires,
)