-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (46 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (46 loc) · 1.28 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r") as file:
long_description = file.read()
setup(
# name
name='chunc',
# current version
# MAJOR VERSION: 1
# MINOR VERSION: 0
# Maintenance: 0
version='1.0.0',
# descriptions
description='Packages for ML/TDA based analysis of MSSM models.',
long_description=long_description,
long_description_content_type="text/markdown",
keywords='mssm, cmssm, pmssm',
# my info
author='Nicholas Carrara',
author_email='ncarrara.physics@gmail.com',
# where to find the source
url='https://github.com/infophysics/CHUNCNet',
# requirements
install_reqs = [],
# packages
packages=find_packages(
#where='chunc',
exclude=['tests'],
),
#package_dir={'': 'chunc'},
include_package_data=True,
# classifiers
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Experimental Physics',
'License :: GNU',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
python_requires='>3.7',
# possible entry point
entry_points={
'console_scripts': [],
},
)