-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (25 loc) · 755 Bytes
/
setup.py
File metadata and controls
34 lines (25 loc) · 755 Bytes
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
import os
from setuptools import Command, find_packages, setup
class CleanCommand(Command):
user_options = [] # type: ignore
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
cmdclass = {'clean': CleanCommand}
setup(
name='senset',
packages=find_packages('.'),
provides=['senset'],
license='MIT',
package_dir={'': '.'},
version="0.0.1",
cmdclass=cmdclass,
author="Euxhen Hasanaj",
author_email="ehasanaj@cs.cmu.edu",
description=("Senescence Marker list in the Lung"),
long_description=("Long Senescence Marker list in the Lung"),
python_requires=">=3.10",
)