-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
82 lines (68 loc) · 1.99 KB
/
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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import codecs
import os
from setuptools import find_packages, setup
# Basic information
NAME = "supr_convertor"
DESCRIPTION = (
"A simple tool to convert SMPL-X model parameters to SUPR model parameters."
)
VERSION = "0.0.1"
AUTHOR = "Neelay Shah"
EMAIL = "[email protected]"
LICENSE = "See LICENSE"
REPOSITORY = "https://github.com/NeelayS/supr_convertor"
PACKAGE = "supr_convertor"
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
# Define the keywords
KEYWORDS = ["SMPL-X", "SUPR", "3D Human Body Modelling"]
CLASSIFIERS = [
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
# Important Paths
PROJECT = os.path.abspath(os.path.dirname(__file__))
REQUIRE_PATH = "requirements.txt"
PKG_DESCRIBE = "README.md"
# Directories to ignore in find_packages
EXCLUDES = ()
# helper functions
def read(*parts):
"""
returns contents of file
"""
with codecs.open(os.path.join(PROJECT, *parts), "rb", "utf-8") as file:
return file.read()
def get_requires(path=REQUIRE_PATH):
"""
generates requirements from file path given as REQUIRE_PATH
"""
for line in read(path).splitlines():
line = line.strip()
if line and not line.startswith("#"):
yield line
# Define the configuration
CONFIG = {
"name": NAME,
"version": VERSION,
"description": DESCRIPTION,
"long_description": LONG_DESCRIPTION,
"long_description_content_type": "text/markdown",
"classifiers": CLASSIFIERS,
"keywords": KEYWORDS,
"license": LICENSE,
"author": AUTHOR,
"author_email": EMAIL,
"url": REPOSITORY,
"project_urls": {"Source": REPOSITORY},
"packages": find_packages(
where=PROJECT, include=["supr_convertor", "supr_convertor.*"], exclude=EXCLUDES
),
"install_requires": list(get_requires()),
"python_requires": ">=3.8",
"test_suite": "tests",
"tests_require": ["pytest>=3"],
"include_package_data": True,
}
if __name__ == "__main__":
setup(**CONFIG)