-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 945 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
29
30
31
from setuptools import setup, find_packages
setup(
name='ScientificDataProcessing',
version='0.1.0',
description='A project for processing and analyzing scientific data.',
author='Yuvraj Singh',
author_email='[email protected]',
url='https://github.com/YuweAEC/project-SciDataPipeline',
packages=find_packages(),
install_requires=[
'pandas',
'matplotlib',
'jupyter',
],
entry_points={
'console_scripts': [
'process_data=src.sourcecode:main',
],
},
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)