-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
53 lines (48 loc) · 1.4 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import find_packages, setup
NAME = 'scriptgen'
VERSION = '0.0.5'
DESCRIPTION = 'A collection of script generation helpers and templates.'
HOME = Path(__file__).parent
README = (HOME / 'README.md').read_text()
CHANGELOG = (HOME / 'CHANGELOG.md').read_text()
AUTHOR = 'Elmer Nocon, fopoon'
AUTHOR_EMAIL = '[email protected]'
LICENSE = 'MIT'
PLATFORMS = 'Any'
URL = 'https://github.com/Fopoon/scriptgen'
DOWNLOAD_URL = 'https://pypi.org/project/scriptgen/'
CLASSIFIERS = [
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description='\n\n'.join([README, CHANGELOG]),
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
platforms=PLATFORMS,
url=URL,
download_url=DOWNLOAD_URL,
classifiers=CLASSIFIERS,
packages=find_packages(
exclude=[
"tests",
"tests.*",
"*.tests.*",
"*.tests"
]
),
)