-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·52 lines (44 loc) · 1.32 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.6
"""Distribution and installation of Astrality."""
from pathlib import Path
from setuptools import find_packages, setup
def readme():
with open(Path(__file__).parent / 'README.rst') as file:
return file.read()
setup(
name='astrality',
version='1.1.1',
packages=find_packages(),
install_requires=[
'Jinja2',
'astral',
'coloredlogs',
'mypy_extensions',
'psutil',
'python-dateutil',
'pyyaml',
'requests',
'watchdog',
],
python_requires='>=3.6',
scripts=['bin/astrality'],
include_package_data=True,
# metadata for upload to PyPI
author='Jakob Gerhard Martinussen',
author_email='[email protected]',
description='A dynamic configuration file manager.',
long_description=readme(),
license='MIT',
keywords='unix configuration management',
url='http://github.com/JakobGM/astrality',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Desktop Environment :: File Managers',
'Topic :: Text Processing',
],
)