-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.19 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='rem-calc',
version='1.1.0',
author='KurzGedanke',
author_email="rem_calc@kurzgedanke.me",
license='MIT',
keywords='rem css webdev',
description="rem-calc helps you to calculate rem values based on pixel values.",
url='https://github.com/KurzGedanke/rem-calc',
download_url='https://github.com/KurzGedanke/rem-calc/archive/v1.1.0.tar.gz',
long_description_content_type='text/markdown',
long_description=read('README.md'),
packages=find_packages(),
include_package_data=True,
install_requires=[
'click',
],
entry_points={
'console_scripts': [
'rem-calc = rem_calc.rem_calc:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)