forked from zhongpc/drxnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 792 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
"""
Created on Wed Aug 30 2022
@author: Peichen Zhong
"""
from setuptools import setup, find_packages
import os
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name='drxnet',
version='0.0.1',
description='A package for learning representationos of battery voltage profiles',
long_description=open(os.path.join(module_dir, 'README.md')).read(),
url='',
author=['Peichen Zhong'],
author_email=['[email protected]'],
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[],
extras_require={},
classifiers=[],
test_suite='',
tests_require=[],
scripts=[]
)