Skip to content

Commit

Permalink
🔖 Add v.1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KurzGedanke committed Jul 24, 2020
1 parent 2a6de3e commit e0a622a
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
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.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.0.0.tar.gz',
long_description=read('README.md'),
packages=find_packages(),
include_package_data=True,
install_requires=[
Expand All @@ -17,5 +26,14 @@
'console_scripts': [
'rem-calc = rem_calc.rem_calc:main'
]
}
)
},
classifiers=[
'Development Status :: 5 - 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',
],
)

0 comments on commit e0a622a

Please sign in to comment.