-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (35 loc) · 1.18 KB
/
setup.py
File metadata and controls
43 lines (35 loc) · 1.18 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import find_packages, setup
#from distutils import setup
import os
import numpy
import subprocess
from distutils.command.install import install
VERSION = '0.0.0'
DESCRIPTION = 'sdOB parameters'
fh = open('README.md', 'r')
LONG_DESCRIPTION = fh.read()
fh.close()
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="sdOB",
version=VERSION,
author="Jiao Li",
author_email="lijiao@bao.ac.cn",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
url ='https://github.com/lidihei/sdOB',
install_requires=['numpy', 'astropy', 'matplotlib'
], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
classifiers= [
"Development Status :: beta",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy"
],
#cmdclass={'install': _install},
#include_package_data=True,
)