forked from regymm/PhysicsExp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·28 lines (26 loc) · 847 Bytes
/
setup.py
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
28
# -*- coding:utf-8 -*-
import setuptools
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="physicsexp",
version="0.0.3",
author="ustcpetergu",
author_email="guyimin@mail.ustc.edu.cn",
description="A simple wrapper of numpy and matplotlib to make physics experiment data analyse easier",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ustcpetergu/PhysicsExp",
packages=['physicsexp'],
install_requires=[
'numpy',
'matplotlib',
'scipy',
'python-docx'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)