-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 730 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (19 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
if __name__ == "__main__":
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
with open('requirements.txt', 'r') as f:
requirements = f.readlines()
requirements = [line.strip() for line in requirements if line.strip()]
setuptools.setup(name = 'nanonis_load',
version = '3.0.2',
author = 'Dillon Wong',
author_email = '',
description = 'Load Nanonis data',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/dilwong/nanonis_load',
install_requires = requirements,
packages=['nanonis_load'],
package_dir={'nanonis_load': 'nanonis_load'}
)