-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.37 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.37 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
import os
from setuptools import setup, find_packages
setup(
name="DustPOL_py", # The name of your package
version="0.1.8", # Initial version of the package
author="Le N. Tram",
author_email="lengoctramlyk31@gmail.com",
description="modeling dust polarization",
long_description=os.path.realpath('__file__'),#open("README.md").read(), # Use README.md as long description
long_description_content_type="text/markdown",
url="https://github.com/lengoctram/DustPOL_py",
packages=find_packages(), # Automatically find all packages and sub-packages
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">3.9",
install_requires=[ # List your project's dependencies here
"numpy>1.18.5",
"matplotlib",
"astropy",
"scipy",
"joblib",
"pwlf",
"lmfit",
"sympy",
"pandas"
# Add other dependencies as needed
],
include_package_data=True, # To include non-code files specified in MANIFEST.in
# entry_points={ # Optional: specify console scripts if your package has CLI commands
# "console_scripts": [
# "my_project=my_project.main:main_function", # command=package.module:function
# ],
# },
)