-
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) · 1.16 KB
/
setup.py
File metadata and controls
24 lines (21 loc) · 1.16 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
from setuptools import Extension
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup( name='PyKinematicalBroadening',
version='0.0.9',
description='Extragalactic Kinematics is an exciting tool that utilizes a kernel (e.g., Gaussian) to broaden models in velocity space, resulting in a highly accurate and detailed output. With this repository, you can easily apply kinematical broadening to your models and gain valuable insights into extragalactic kinematics.',
long_description=long_description, # Long description read from the the readme file
long_description_content_type="text/markdown",
author='Jean Gomes',
author_email='antineutrinomuon@gmail.com',
url='https://github.com/neutrinomuon/PyKinematicalBroadening',
install_requires=[ 'numpy','matplotlib' ],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
package_dir={"PyKinematicalBroadening": "src/python"},
packages=['PyKinematicalBroadening'],
data_files=[('', ['version.txt']),],
)